home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1990-12-11 | 976 b | 34 lines |
- ' TEXT ENLARGER PROGRAM
- '
- ' Programmed by
- '
- ' HAWK IN JANUARY 1993
- '
-
- Screen Open 0,320,200,2,Lowres : Screen Hide 0
-
- Screen Open 1,320,200,2,Lowres : Cls 0 : Double Buffer : Autoback 0 : Bob Update Off
-
- D$="TEXT ENLARGER PROGRAM CODED BY HAWK IN 1993"
- X=0 : Y=0
- For T=1 To Len(D$)
- Screen 0 : Home : Print Mid$(D$,T,1);
- For X=0 To 7
- For Y=0 To 8
- If Point(X,Y)<>0
- Screen 1
- Paste Bob 70+(X*24),Y*24,1
- Screen 0
- End If
- Next Y
- Next X
- Screen 1 : Screen Swap : Wait 5 : Cls 0
- Next T
-
- ' Not a program you are likely to use very often! However, if you have
- ' a picture on screen 0 instead of text (ie. a letter drawn in DPaint
- ' with a few more colours) and then alter the X&Y variables accordingly,
- ' perhaps displaying a different bob depending on the colour of the X,Y
- ' position? I've tried it, now you've got to!
- '
- ' HAWK JANUARY 1993